Add MySQL provider documentation and configuration#217
Open
danielgerlag wants to merge 3 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds Drasi Server documentation for a new MySQL source and a MySQL bootstrap provider, and wires both into the configuration “how-to” landing pages so they’re discoverable alongside existing sources/providers.
Changes:
- Added a new “Configure MySQL Source” how-to page with configuration, prerequisites, and troubleshooting guidance.
- Added a new “Configure MySQL Bootstrap Provider” how-to page describing snapshot bootstrapping for MySQL sources.
- Updated the “Configure Sources” and “Configure Bootstrap Providers” index pages to include MySQL cards.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 8 comments.
| File | Description |
|---|---|
| docs/content/drasi-server/how-to-guides/configuration/configure-sources/configure-mysql-source/_index.md | New MySQL source documentation page (config, prerequisites, verification, troubleshooting). |
| docs/content/drasi-server/how-to-guides/configuration/configure-sources/_index.md | Adds MySQL to the sources landing-page card grid. |
| docs/content/drasi-server/how-to-guides/configuration/configure-bootstrap-providers/configure-mysql-bootstrap-provider/_index.md | New MySQL bootstrap provider documentation page (usage + config reference). |
| docs/content/drasi-server/how-to-guides/configuration/configure-bootstrap-providers/_index.md | Adds MySQL to the bootstrap providers landing-page card grid. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+114
to
+116
| | Field | Type | Default | Description | | ||
| |---|---:|---:|---| | ||
| | `kind` | string | required | Must be `mysql`. | |
Comment on lines
+207
to
+209
| | Error | Cause | Solution | | ||
| |-------|-------|----------| | ||
| | `binlog_format must be ROW` | Binlog format not set to ROW | Set `binlog_format = ROW` in `my.cnf` and restart | |
Comment on lines
+57
to
+59
| | Field | Type | Required | Description | | ||
| |---|---|---:|---| | ||
| | `kind` | string | Yes | Must be `mysql`. | |
…ject#218) * Initial plan * Fix MySQL docs review feedback in PR drasi-project#217 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
agentofreality
approved these changes
Jun 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The changes introduce a new MySQL bootstrap and source provider that allows loading initial state from a MySQL database and tracking changes.